1. The Area Problem: From Polygons to Limits
While the area of polygons can be found by decomposition into triangles, a region $S$ with a curved boundary requires a different approach. We define The Area Problem as finding the exact area under a continuous, non-negative function $y = f(x)$ on the interval $[a, b]$.
Divide the interval $[a, b]$ into $n$ subintervals of equal width $\Delta x = \frac{b-a}{n}$. The endpoints are $x_0, x_1, \dots, x_n$.
Construct $n$ rectangles. Using the Right Endpoint estimate ($R_n$), the height of the $i$-th rectangle is $f(x_i)$. The total area is $A \approx \sum_{i=1}^n f(x_i) \Delta x$.
As $n$ increases, the error (the gaps between the rectangles and the curve) vanishes. The exact area $A$ is defined as the limit: $\displaystyle A = \lim_{n \to \infty} \sum_{i=1}^n f(x_i) \Delta x$.
2. The Duality of Distance and Velocity
The Distance Problem asks: How far does an object travel if its velocity varies over time? If velocity is constant, $distance = velocity \times time$. If it varies, we treat it as "locally constant" over very short time intervals $\Delta t$.
"The more frequently we measure the velocity, the more accurate our estimates become, so it seems plausible that the exact distance d traveled is the limit of such expressions."
Worked Example: $y = x^2$ on $[0, 1]$ (Example 1)
To estimate the area under the parabola $y = x^2$ from 0 to 1 with $n=4$ using right endpoints:
- $\Delta x = (1-0)/4 = 0.25$
- $R_4 = 0.25 [f(0.25) + f(0.5) + f(0.75) + f(1)]$
- $R_4 = 0.25 [0.0625 + 0.25 + 0.5625 + 1] = 0.46875$
Using left endpoints ($L_4$) would yield $0.21875$. The true area is "trapped" between these bounds: $0.21875 < A < 0.46875$.